www.gusucode.com > PHP 微先锋企业小程序系统 v1xPHP源码程序 > PHP 微先锋企业小程序系统 v1x/wxfqyxcx_v1.0/wxfqyxcx_v1.0/runtime/temp/511362cc9f5c282c506d59e43e08d663.php

    <?php if (!defined('THINK_PATH')) exit(); /*a:2:{s:55:"E:\xampp\htdocs\public/../app/admin\view\page\edit.html";i:1540537070;s:57:"E:\xampp\htdocs\public/../app/admin\view\public\base.html";i:1532530212;}*/ ?>
<!DOCTYPE html><html><head><title>修改单页面_后台管理</title><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/bootstrap.min.css"><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/admin.css">
<script src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/respond.min.js"></script><script src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/bootstrap.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.uploadify.min.js"></script></head><body>

<h5 class="sub-header"><a href="/admin/Page">页面列表</a> > 新建页面</h5>

<form id="addarc" method="post" action="/admin/Page/doedit" role="form" enctype="multipart/form-data" class="table-responsive">
<table class="table table-striped table-bordered">
<tbody>
    <tr>
        <td align="right">页面标题:</td>
        <td><input name="title" type="text" id="title" value="<?php echo $row["title"]; ?>" class="required" style="width:60%" placeholder="在此输入标题"> <input style="display:none;" type="text" name="id" id="id" value="<?php echo $id; ?>"></td>
    </tr>
    <tr>
        <td align="right">别名:</td>
        <td><input name="filename" type="text" id="filename" class="required" value="<?php echo $row["filename"]; ?>" size="30"> </td>
    </tr>
    <tr>
        <td align="right">模板文件名:</td>
        <td><input name="template" type="text" id="template" value="<?php echo $row["template"]; ?>" size="30"></td>
    </tr>
    <tr>
        <td align="right">seoTitle:</td>
        <td><input name="seotitle" type="text" id="seotitle" value="<?php echo $row["seotitle"]; ?>" style="width:60%"></td>
    </tr>
    <tr>
        <td align="right" style="vertical-align:middle;">缩略图:</td>
        <td style="vertical-align:middle;"><button type="button" onclick="upImage();">选择图片</button> <input name="litpic" type="text" id="litpic" value="<?php echo $row["litpic"]; ?>" style="width:40%"> <img style="margin-left:20px;<?php if(empty($row["litpic"]) || !imgmatch($row["litpic"])){ echo "display:none;"; } ?>" src="<?php if(imgmatch($row["litpic"])){echo $row["litpic"];} ?>" width="120" height="80" id="picview" name="picview"></td>
    </tr>
<script type="text/javascript">
var _editor;
$(function() {
    //重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
    _editor = UE.getEditor('ueditorimg');
    _editor.ready(function () {
        //设置编辑器不可用
        _editor.setDisabled('insertimage');
        //隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
        _editor.hide();
        //侦听图片上传
        _editor.addListener('beforeInsertImage', function (t, arg) {
            //将地址赋值给相应的input,只取第一张图片的路径
			$('#litpic').val(arg[0].src);
            //图片预览
            $('#picview').attr("src",arg[0].src).css("display","inline-block");
        })
    });
});
//弹出图片上传的对话框
function upImage()
{
    var myImage = _editor.getDialog("insertimage");
	myImage.render();
    myImage.open();
}
</script>
<script type="text/plain" id="ueditorimg"></script>
    <tr>
        <td align="right">页面关键字:</td>
        <td><input type="text" name="keywords" id="keywords" style="width:50%" value="<?php echo $row["keywords"]; ?>"> (用","分开)</td>
    </tr>
    <tr>
        <td align="right" style="vertical-align:middle;">页面摘要信息:</td>
        <td><textarea name="description" rows="5" id="description" style="width:80%;height:70px;vertical-align:middle;"><?php echo $row["description"]; ?></textarea></td>
    </tr>
    <tr>
        <td colspan="2"><strong>页面内容:</strong></td>
    </tr>
    <tr>
        <td colspan="2">
<!-- 加载编辑器的容器 --><script id="container" name="body" type="text/plain"><?php echo $row["body"]; ?></script>
<!-- 配置文件 --><script type="text/javascript" src="/other/flueditor/ueditor.config.js"></script>
<!-- 编辑器源码文件 --><script type="text/javascript" src="/other/flueditor/ueditor.all.min.js"></script>
<!-- 实例化编辑器 --><script type="text/javascript">var ue = UE.getEditor('container',{maximumWords:100000,initialFrameHeight:320,enableAutoSave:false});</script></td>
    </tr>
    <tr>
        <td colspan="2"><button type="submit" class="btn btn-success" value="Submit">保存(Submit)</button>&nbsp;&nbsp;<button type="reset" class="btn btn-default" value="Reset">重置(Reset)</button><input type="hidden"></input></td>
    </tr>
</tbody></table></form><!-- 表单结束 -->

<script>
$(function(){
    $(".required").blur(function(){
        var $parent = $(this).parent();
        $parent.find(".formtips").remove();
        if(this.value=="")
        {
            $parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
        }
        else
        {
            if( $(this).is('#filename') ){
                var reg = /^[a-zA-Z]+[0-9]*[a-zA-Z0-9]*$/;//验证是否为字母、数字
                if(!reg.test($("#filename").val()))
                {
                    $parent.append(' <small class="formtips onError"><font color="red">格式不正确!</font></small>');
                }
                else
                {
                    $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
                }
            }
            else
            {
                $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
            }
        }
    });

    //重置
    $('#addarc input[type="reset"]').click(function(){
            $(".formtips").remove(); 
    });

    $("#addarc").submit(function(){
        $(".required").trigger('blur');
        var numError = $('#addarc .onError').length;
        
        if(numError){return false;}
        
        //$("#contents").val = ue.getContent();
        //var datas = $('#addarc').serialize();//#form要在form里面
        
        //var content = ue.getContent();
        
        /* $.ajax({
            url: "/admin/Page/doedit",
            type: "POST",
            cache: false,
            dataType: "json",
            data: {
                "id":$("#id").val(),
                "template":$("#template").val(),
                "filename":$("#filename").val(),
                "litpic":$("#litpic").val(),
                "title":$("#title").val(),
                "seotitle":$("#seotitle").val(),
                "keywords":$("#keywords").val(),
                "description":$("#description").val(),
                "content":content
            },
            success: function(data){
                if(data.code==200)
                {
                    //alert(data.info);
                    window.location.replace("/admin/Page");
                }
            }
        }); */
    });
});
</script>

</body></html>